home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2003 May (DVD) / Macworld Resource DVD May 2003.toast / Data / Software / Bonus / Database / mysql-max-3.23.55.sit / mysql-max-3.23.55-apple-darwi.1 / mysql-test / t / func_isnull.test < prev    next >
Encoding:
Text File  |  2003-01-21  |  284 b   |  11 lines  |  [TEXT/ttxt]

  1. #
  2. # test of ISNULL()
  3. #
  4.  
  5. drop table if exists t1;
  6. create table t1 (id int auto_increment primary key not null, mydate date not null);
  7. insert into t1 values (0,"2002-05-01"),(0,"2002-05-01"),(0,"2002-05-01");
  8. flush tables;
  9. select * from t1 where isnull(to_days(mydate));
  10. drop table t1;
  11.